361d72
@@ -131,7 +131,6 @@
 
   boolean[] columnSortOrderIsDesc;
 
-  private static byte[] decimalBuffer = null;
   public static Charset decimalCharSet = Charset.forName("US-ASCII");
 
   @Override
@@ -426,9 +425,7 @@
static Object deserialize(InputByteBuffer buffer, TypeInfo type,
           length++;
         } while (true);
 
-        if(decimalBuffer == null || decimalBuffer.length < length) {
-          decimalBuffer = new byte[length];
-        }
+        final byte[] decimalBuffer = new byte[length];
 
         buffer.seek(start);
         for (int i = 0; i < length; ++i) {
